home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-05-31 | 1.2 KB | 42 lines | [TEXT/EMAC] |
- ;;;
- ;;; This file is part of a Macintosh port of GNU Emacs.
- ;;; Copyright (C) 1993, 1994 Marc Parmet. All rights reserved.
- ;;;
- ;;; GNU Emacs is distributed in the hope that it will be useful,
- ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
- ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ;;; GNU General Public License for more details.
- ;;;
-
- ;;;
- ;;; This file is read after ~emacs/lisp/term/Macintosh-win.el is read at startup.
- ;;;
-
- (require 'mac-dumptime "mac/dumptime")
-
- ; pascal OSErr
- ; CreateObjSpecifier( DescType desiredClass,
- ; AEDesc *theContainer,
- ; DescType keyForm,
- ; AEDesc *keyData,
- ; Boolean disposeInputs,
- ; AEDesc *objSpecifier )
- (deftrap CreateObjSpecifier ("4eb9"
- (lsh CreateObjSpecifier -16)
- (logand CreateObjSpecifier 65535))
- ((desiredClass immediate-string)
- (theContainer address)
- (keyForm immediate-string)
- (keyData address)
- (disposeInputs char)
- (objSpecifier address))
- short)
-
- (load "mac/apple-events" nil t)
- (load "mac/core-suite" nil t)
- (load "mac/menu-install" nil t)
- (setq accept-high-level-events t)
- (make-clipboard-current)
- (modifiers:initialize)
- (provide 'mac-runtime)
-